← Index
NYTProf Performance Profile   
For svc/members/upsert
  Run on Tue Jan 13 11:50:22 2015
Reported on Tue Jan 13 12:09:51 2015

Filename(eval 83)[/usr/share/perl5/CGI.pm:932]
StatementsExecuted 4 statements in 6µs
Eval Invoked At/usr/share/perl5/CGI.pm line 932
Sibling evals1, 2, 3, 4, 5, 6
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1117µs8µsCGI::::cacheCGI::cache
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1
# spent 8µs (7+2) within CGI::cache which was called: # once (7µs+2µs) by CGI::header at line 895 of CGI.pm
package CGI; sub cache {
211µs12µs my($self,$new_value) = self_or_default(@_);
# spent 2µs making 1 call to CGI::self_or_default
31300ns $new_value = '' unless $new_value;
41100ns if ($new_value ne '') {
5 $self->{'cache'} = $new_value;
6 }
714µs return $self->{'cache'};
8}
9
10;